feat(cli): add GOOSE_DEBUG environment variable support#4825
Merged
DOsinga merged 1 commit intoblock:mainfrom Oct 3, 2025
Merged
feat(cli): add GOOSE_DEBUG environment variable support#4825DOsinga merged 1 commit intoblock:mainfrom
DOsinga merged 1 commit intoblock:mainfrom
Conversation
DOsinga
approved these changes
Sep 29, 2025
Collaborator
|
hi @sam-at-block - do you still want to get this in? if you remove the comment & sync to main, we can make it happen |
Add support for GOOSE_DEBUG environment variable to enable debug mode without requiring the --debug CLI flag. Follows existing precedence pattern where CLI flags take priority over environment variables. - CLI --debug flag overrides GOOSE_DEBUG env var - GOOSE_DEBUG=true shows full tool parameters without truncation - Defaults to false if neither CLI flag nor env var is set - Uses same config.get_param() pattern as GOOSE_PROVIDER/GOOSE_MODEL Signed-off-by: Sam Osborn <samosborn@squareup.com>
649830e to
fca476f
Compare
wpfleger96
added a commit
to wpfleger96/goose
that referenced
this pull request
Oct 3, 2025
* main: Removed unused libs (block#4932) Platform extensions sketch (block#4868) Add reply to the routes (block#4963) feat(cli): add GOOSE_DEBUG environment variable support (block#4825)
lifeizhou-ap
added a commit
that referenced
this pull request
Oct 6, 2025
* main: (22 commits) fix: Issue #4540: `goose configure` -> Cursor Agent succeeds (#4942) feat: Add advanced data analysis pipeline recipe (#4990) (#5005) Create / edit recipe form unification and improvements (#4693) feat: add Code Review Mentor recipe with Developer and Memory extensions (#4992) (#5014) feat: set custom models for lead/worker (#4598) feat: add grok-code-fast-1 support for xAI provider (#4472) Persist dynamic extension config so we can resume recipe sessions w/ extensions (#4331) fix: show PowerShell PATH instructions for Windows users (#4989) feat: add Smart Task Organizer recipe for Hacktoberfest (#4936) Fix extension headers (#5000) feat: add advanced software project generator initializer recipe (#4767) (#4949) Removed unused libs (#4932) Platform extensions sketch (#4868) Add reply to the routes (#4963) feat(cli): add GOOSE_DEBUG environment variable support (#4825) docs: Change community page sections (#4984) docs: remove temporary Hacktoberfest issue templates (#4982) Create multi-channel researcher prompt (#4947) docs: Add Community Content section to Community Page (#4964) Allow empty API Key when registering custom provider (#4977) ...
Itz-Agasta
pushed a commit
to Itz-Agasta/goose
that referenced
this pull request
Oct 7, 2025
Signed-off-by: Sam Osborn <samosborn@squareup.com> Signed-off-by: Itz-Agasta <rupamgolui69@gmail.com>
This was referenced Oct 8, 2025
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for GOOSE_DEBUG environment variable to enable debug mode without requiring the --debug CLI flag. Follows existing precedence pattern where CLI flags take priority over environment variables.